home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 22
/
freelog 22.iso
/
Prog
/
Djgpp
/
GPC2952B.ZIP
/
doc
/
gpc
/
docdemos
/
callcdemo.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-02-09
|
203 b
|
14 lines
program CallCDemo;
{$L callc.c} { Or: `callc.o' if you don't have the source }
var
foo : Integer; asmname 'foo'; external;
procedure Bar; asmname 'bar';
begin
foo := 42;
Bar
end.